home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi2 / delphite.exe / data.z / FILTER.DPR < prev    next >
Encoding:
Text File  |  1996-08-12  |  378 b   |  18 lines

  1. program Filter;
  2.  
  3. uses
  4.   Forms,
  5.   DM in 'DM.pas' {DM1},
  6.   CustView in 'CustView.pas' {fmCustView},
  7.   About in 'About.pas' {fmAboutBox},
  8.   Filter1 in 'Filter1.pas' {fmFilterFrm};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TfmCustView, fmCustView);
  14.   Application.CreateForm(TDM1, DM1);
  15.   Application.CreateForm(TfmFilterFrm, fmFilterFrm);
  16.   Application.Run;
  17. end.
  18.